; Parameter(s): $h_StatusBar - Handle to statusbar
; $i_part - zero based index of panel to retrieve rectangle from
; Requirement:
; Return Value(s): Returns zero based array
; 0 - Left
; 1 - Top
; 2 - Right
; 3 - Bottom
; zero otherwise.
; User CallTip: _GUICtrlStatusBarGetRect($StatusBar, $i_part) Retrieves the bounding rectangle of a part in a status window. (required: <GuiStatusBar.au3>)
; Author(s): gafrost (Gary Frost (custompcs at charter dot net))
; Parameter(s): $h_StatusBar - The Control Id (will be converted to hWnd)
; $i_Panel - Nubmer of the panel to retrieve length from
;
; Requirement:
; Return Value(s): Text Length
; User CallTip: _GUICtrlStatusBarGetTextLength ($h_StatusBar, $i_Panel) Retrieves the length, in characters, of the text from the specified part of a status window. (required: <GuiStatusBar.au3>)
; Author(s): Steve Podhajecki <gehossafats@netmdc.com>, gafrost (Gary Frost (custompcs at charter dot net))
; Parameter(s): $h_StatusBar - Handle to statusbar
; $i_MinHeight - Minimum height, in pixels, of the window
; Requirement:
; Return Value(s): None
; User CallTip: _GUICtrlStatusBarSetMinHeight($h_StatusBar, $i_MinHeight) Sets the minimum height of a status window's drawing area. (required: <GuiStatusBar.au3>)
; Author(s): gafrost (Gary Frost (custompcs at charter dot net))
; Parameter(s): $h_StatusBar - Handle to statusbar
; $b_Simple - Display type flag.
; If this parameter is TRUE, the window displays simple text. (Default)
; If it is FALSE, it displays multiple parts
; Requirement:
; Return Value(s): None
; User CallTip: _GUICtrlStatusBarSetSimple($h_StatusBar[, $b_Simple = True]) Specifies whether a status window displays simple text or displays all window parts. (required: <GuiStatusBar.au3>)
; Author(s): gafrost (Gary Frost (custompcs at charter dot net))
; Parameter(s): $h_StatusBar - The Control Id (will be converted to hWnd)
; $s_Data - The text to display in the panel
; $i_Panel - The panel to hold the text (Default: 0)
; Requirement:
; Return Value(s): Returns TRUE if successful, or FALSE otherwise.
; User CallTip: _GUICtrlStatusBarSetText($h_StatusBar[, $s_Data = ""[, $i_Panel = 0]]) Sets the text in the specified part of a status window. (required: <GuiStatusBar.au3>)
; Author(s): rysiora, JdeB, tonedef,
; gafrost (Gary Frost (custompcs at charter dot net))
; Note(s): Set $i_Panel to 255 for simple statusbar
; Parameter(s): $h_StatusBar - Handle to statusbar
; $i_part - Zero-based index of the part that will receive the ToolTip text
; $s_ToolTip - new ToolTip text
; Requirement:
; Return Value(s): None
; User CallTip: _GUICtrlStatusBarSetTip($h_StatusBar, $i_part, $s_ToolTip) Sets the ToolTip text for a part in a status bar. (required: <GuiStatusBar.au3>)
; Author(s): gafrost (Gary Frost (custompcs at charter dot net))
; Parameter(s): $h_StatusBar - Handle to statusbar
; $b_Unicode - Determines the character set that is used by the control.
; If this value is TRUE, the control will use Unicode characters. (Default)
; If this value is FALSE, the control will use ANSI characters.
; Requirement:
; Return Value(s): Returns the previous Unicode format flag for the control
; User CallTip: _GUICtrlStatusBarSetUnicode($h_StatusBar[, $b_Unicode = True[) Sets the Unicode character format flag for the control. (required: <GuiStatusBar.au3>)
; Author(s): gafrost (Gary Frost (custompcs at charter dot net))